home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 7
/
Amiga Format AFCD07 (Dec 1996, Issue 91).iso
/
serious
/
shareware
/
programming
/
ixemul-complete
/
ixemul
/
ixnet
/
create_header.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-08-13
|
377b
|
14 lines
#define _KERNEL
#include "ixnet.h"
#include <stddef.h>
#include <stdio.h>
int main(int argc, char **argv)
{
printf ("/* This header has been generated by the create_header tool.\n DO NOT EDIT! */\n\n");
printf ("#define IXNETBASE_SIZEOF (IXNETBASE_C_PRIVATE + %d)\n",
(int)(sizeof (struct ixnet_base) - offsetof (struct ixnet_base, ix_seg_list) - 4));
return 0;
}